In This Topic
Writes a single value to the stream, and advances the current position within this stream by the number of bytes written.
Syntax
'Declaration
Public Overloads Sub Write(Of As {New, Struct})( _
ByVal As _
)
public void Write<>(
)
where T: new(), struct
Parameters
- value
- The value to write to the stream.
Type Parameters
- T
- The type of the value to be written to the stream.
Exceptions
Exception | Description |
System.NotSupportedException | The stream does not support writing. |
See Also